10 lines
159 B
Text
10 lines
159 B
Text
|
#!/bin/bash
|
||
|
|
||
|
if [[ -z $DETECTED_OS ]]; then
|
||
|
echo "cannot detect OS, please set DETECTED_OS manually"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
./$DETECTED_OS/configure_fresh_system
|
||
|
|