Skip to content

Commit caa6a4f

Browse files
committed
Fix removal of temp dir in actions
1 parent 6406659 commit caa6a4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
mkdir --parents server/vhdl_ls/$ver
1717
unzip temp/vhdl_ls-x86_64-unknown-linux-gnu.zip -d server/vhdl_ls/$ver
1818
unzip temp/vhdl_ls-x86_64-pc-windows-msvc.zip -d server/vhdl_ls/$ver
19-
rmdir -r temp
19+
rm -r temp
2020
- uses: actions/setup-node@v1
2121
with:
2222
node-version: '10'

0 commit comments

Comments
 (0)