mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-16 01:28:00 +00:00
9 lines
102 B
Bash
Executable file
9 lines
102 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ -z "$1" ]; then
|
|
bash
|
|
else
|
|
echo "Running $1"
|
|
set -ex
|
|
bash -c "$1"
|
|
fi
|