mirror of
https://github.com/LegacyUpdate/LegacyUpdate.git
synced 2025-01-22 14:12:07 -05:00
9 lines
204 B
Bash
9 lines
204 B
Bash
#!/bin/bash
|
|
args=("$(wslpath -w "$(dirname "$0")/sign.cmd")")
|
|
for arg in "$@"; do
|
|
case "$arg" in
|
|
*/*) args+=("$(wslpath -w "$arg")") ;;
|
|
*) args+=("$arg") ;;
|
|
esac
|
|
done
|
|
exec cmd.exe /c "${args[@]}"
|