We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 488853f commit 43b5cfdCopy full SHA for 43b5cfd
.github/workflows/release.yml
@@ -30,5 +30,5 @@ jobs:
30
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}
31
with:
32
formula-name: archive-fusionvm
33
- homebrew-tap: nreilingh/homebrew-nreilingh
+ homebrew-tap: nreilingh/homebrew-tap
34
download-url: ${{ steps.upload_release_asset.outputs.browser_download_url }}
tests/archive_fusionvm.zunit
@@ -2,7 +2,7 @@
2
3
# $TEMP is set up in bootstrap
4
@setup {
5
- rm -r $TEMP && mkdir $TEMP
+ [ ! -d $TEMP ] || rm -r $TEMP; mkdir $TEMP
6
[ -f $TEMP/decoy_file ] || touch $TEMP/decoy_file
7
[ -d $TEMP/decoy_dir ] || mkdir $TEMP/decoy_dir
8
}
0 commit comments