Skip to content

Commit

Permalink
check windows os on msys
Browse files Browse the repository at this point in the history
  • Loading branch information
hemnstill committed Sep 16, 2023
1 parent d835193 commit de40dd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .tools/download_bsdtar.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

is_windows_os=false && [[ $(uname) == Windows_NT* ]] && is_windows_os=true
is_windows_os=false && [[ $(uname) == Windows_NT* ]] || [[ $(uname) == MSYS* ]] && is_windows_os=true

echo "download bsdtar ..."
bsdtar_version=3.7.1
Expand Down

0 comments on commit de40dd1

Please sign in to comment.