mirror of
https://github.com/getpaseo/paseo.git
synced 2026-09-14 20:36:44 +08:00
5f575fcdd6
Resolve Bash through PATH so repository development entrypoints run on NixOS and other systems without /bin/bash.
7 lines
155 B
Bash
Executable File
7 lines
155 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
exec node "$SCRIPT_DIR/paseo-ios-simulator-service.mjs"
|