diff --git a/vendor/bin/setup-cmder.cmd b/vendor/bin/setup-cmder.cmd new file mode 100644 index 0000000..79337ab --- /dev/null +++ b/vendor/bin/setup-cmder.cmd @@ -0,0 +1,3 @@ +@echo off + +powershell -NoProfile -ExecutionPolicy Bypass -File "%~n0.ps1" %* \ No newline at end of file diff --git a/vendor/bin/setup-cmder.sh b/vendor/bin/setup-cmder.sh new file mode 100644 index 0000000..ac2f491 --- /dev/null +++ b/vendor/bin/setup-cmder.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +powershell -NoProfile -ExecutionPolicy Bypass -File "$SCRIPT_DIR/${0%.*}.ps1" "$@" \ No newline at end of file