11 lines
216 B
Bash
Executable File
11 lines
216 B
Bash
Executable File
#! /usr/bin/env bash
|
|
set -e
|
|
|
|
# Require an argument (linux, windows)
|
|
if [ $# != 1 ]; then
|
|
echo "Usage: ewconfig-reinstall <platform>"
|
|
return 1
|
|
fi
|
|
|
|
# Execute through ewconfig-run
|
|
ewconfig-run sh ./install-$1.sh |