6 lines
75 B
Bash
6 lines
75 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
if [ -f ./scripts/init.sh ]; then
|
||
|
|
bash ./scripts/init.sh
|
||
|
|
fi
|