Skip to content

Commit 43b5cfd

Browse files
committed
now properly checking for temp directory in setup before removing
Also corrected release action for new tap location
1 parent 488853f commit 43b5cfd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ jobs:
3030
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}
3131
with:
3232
formula-name: archive-fusionvm
33-
homebrew-tap: nreilingh/homebrew-nreilingh
33+
homebrew-tap: nreilingh/homebrew-tap
3434
download-url: ${{ steps.upload_release_asset.outputs.browser_download_url }}

tests/archive_fusionvm.zunit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# $TEMP is set up in bootstrap
44
@setup {
5-
rm -r $TEMP && mkdir $TEMP
5+
[ ! -d $TEMP ] || rm -r $TEMP; mkdir $TEMP
66
[ -f $TEMP/decoy_file ] || touch $TEMP/decoy_file
77
[ -d $TEMP/decoy_dir ] || mkdir $TEMP/decoy_dir
88
}

0 commit comments

Comments
 (0)