mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-11-24 11:14:26 +03:00
10 lines
102 B
Bash
Executable File
10 lines
102 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -z "$1" ]; then
|
|
bash
|
|
else
|
|
echo "Running $1"
|
|
set -ex
|
|
bash -c "$1"
|
|
fi
|