Skip to content

Commit

Permalink
Fix go_public
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Howe committed Jul 27, 2017
1 parent 547e31a commit 61117cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/autoace_builder.pl
Original file line number Diff line number Diff line change
Expand Up @@ -640,8 +640,8 @@ sub go_public {
$wormbase->run_command("cd $ftp_release_dir && ln -s $rel current-development-release", $log);

$log->write_to("Updating the current_DB symlink\n");
$wormbase->run_script("rm -f $db_dir/current_DB", $log);
$wormbase->run_script("cd $db_dir && ln -s $rel current_DB", $log);
$wormbase->run_command("rm -f $db_dir/current_DB", $log);
$wormbase->run_command("cd $db_dir && ln -s $rel current_DB", $log);

$log->write_to("Sending release letter to staff\n");
my $letter = "$ftp_release_dir/$rel/letter.$rel";
Expand Down

0 comments on commit 61117cd

Please sign in to comment.