Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Fixes after testing on Windows (using Git Bash)
Browse files Browse the repository at this point in the history
Auditor: @darkdh
  • Loading branch information
bsclifton committed Nov 17, 2017
1 parent 6b3a55a commit a25788d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/buildPackage.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ var cmds = ['echo cleaning up target...']

if (isWindows) {
cmds = cmds.concat([
'for /d %x in (*-win32-x64) do rmdir /s /q "%x"',
'for /d %x in (*-win32-ia32) do rmdir /s /q "%x"'
'cmd.exe /c for /d %x in (*-win32-x64) do rmdir /s /q "%x"',
'cmd.exe /c for /d %x in (*-win32-ia32) do rmdir /s /q "%x"'
])

// Remove the destination folder
Expand Down

0 comments on commit a25788d

Please sign in to comment.