Add a macro to reinstall config from anywhere
This commit is contained in:
parent
a3d7d30bcd
commit
c7894bfa56
@ -223,6 +223,18 @@ ewconfig-run() {
|
|||||||
cd $cwd
|
cd $cwd
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Re-run the install script from anywhere
|
||||||
|
ewconfig-reinstall() {
|
||||||
|
# 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
|
||||||
|
}
|
||||||
|
|
||||||
# Define a function to emulate gh
|
# Define a function to emulate gh
|
||||||
gh-emulated() {
|
gh-emulated() {
|
||||||
if [ $# != 3 ]; then
|
if [ $# != 3 ]; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user