7 lines
No EOL
215 B
Bash
7 lines
No EOL
215 B
Bash
#!/bin/bash
|
|
set -e
|
|
if [ -z ${dir+x} ]; then echo "\$dir not set, skipping."; exit 22; else
|
|
if [ -z ${icf+x} ]; then echo "ICF url not set, skipping."; else
|
|
wget $icf -O $dir/segatools/amfs/ICF1
|
|
fi
|
|
fi |