Skip to content

Commit

Permalink
Merge pull request #11410 from DeterminateSystems/upload-release-cleanup
Browse files Browse the repository at this point in the history
maintainers/upload-release.pl: Delete temporary directories when we're done
  • Loading branch information
edolstra authored Sep 3, 2024
2 parents 784a843 + 02bb633 commit 1073a8e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion maintainers/upload-release.pl
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ sub copyManual {
system("xz -d < '$manualNar' | nix-store --restore $tmpDir/manual.tmp") == 0
or die "unable to unpack $manualNar\n";
rename("$tmpDir/manual.tmp/share/doc/nix/manual", "$tmpDir/manual") or die;
system("rm -rf '$tmpDir/manual.tmp'") == 0 or die;
File::Path::remove_tree("$tmpDir/manual.tmp", {safe => 1});
}

system("aws s3 sync '$tmpDir/manual' s3://$releasesBucketName/$releaseDir/manual") == 0
Expand Down Expand Up @@ -281,3 +281,6 @@ sub downloadFile {
system("git tag --force --sign $version $nixRev -m 'Tagging release $version'") == 0 or die;
system("git push --tags") == 0 or die;
system("git push --force-with-lease origin $nixRev:refs/heads/latest-release") == 0 or die if $isLatest;

File::Path::remove_tree($narCache, {safe => 1});
File::Path::remove_tree($tmpDir, {safe => 1});

0 comments on commit 1073a8e

Please sign in to comment.