m0ar fizax
This commit is contained in:
+1
-12
@@ -55,18 +55,6 @@ else
|
|||||||
gitBranch="$2"
|
gitBranch="$2"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z "$ESPIDFTOOLS_INSTALLDIR" ]; then
|
|
||||||
# cant seem to get this one to use writeToLog
|
|
||||||
echo -e "ESPIDFTOOLS_INSTALLDIR environment variable not found, appending to $rcFile\n"
|
|
||||||
echo "export ESPIDFTOOLS_INSTALLDIR=\"$defaultInstallDir\"" >> "$rcFile"
|
|
||||||
installDir="$defaultInstallDir"
|
|
||||||
aliasInstallDirChk=$?
|
|
||||||
else
|
|
||||||
echo -e "ESPIDFTOOLS_INSTALLDIR environment variable found, skipping\n"
|
|
||||||
installDir="$ESPIDFTOOLS_INSTALLDIR"
|
|
||||||
aliasInstallDirChk=0
|
|
||||||
fi
|
|
||||||
|
|
||||||
gitJobs=5 # number of jobs to download from github with
|
gitJobs=5 # number of jobs to download from github with
|
||||||
rebootMins=3 # minutes of warning before reboot
|
rebootMins=3 # minutes of warning before reboot
|
||||||
log="$installDir/install.log" # log file
|
log="$installDir/install.log" # log file
|
||||||
@@ -318,6 +306,7 @@ function testAppendAlias() {
|
|||||||
function handleAliasEnviron() {
|
function handleAliasEnviron() {
|
||||||
# the pretty comment and such first
|
# the pretty comment and such first
|
||||||
testAppendAlias "# esp-idf-tools aliases" "\n# esp-idf-tools\n"
|
testAppendAlias "# esp-idf-tools aliases" "\n# esp-idf-tools\n"
|
||||||
|
testAppendAlias "ESPIDFTOOLS_INSTALLDIR" "export ESPIDFTOOLS_INSTALLDIR=\"$defaultInstallDir\""
|
||||||
testAppendAlias "get-esp-tools" "alias get-esp-tools='. $exportScript'"
|
testAppendAlias "get-esp-tools" "alias get-esp-tools='. $exportScript'"
|
||||||
testAppendAlias "run-esp-cmd" "alias run-esp-cmd='bash $runningDir/esp-idf-tools-cmd.sh'"
|
testAppendAlias "run-esp-cmd" "alias run-esp-cmd='bash $runningDir/esp-idf-tools-cmd.sh'"
|
||||||
testAppendAlias "esp-install-monitor" "alias esp-install-monitor='tail -n 75 -f $log'"
|
testAppendAlias "esp-install-monitor" "alias esp-install-monitor='tail -n 75 -f $log'"
|
||||||
|
|||||||
@@ -21,9 +21,9 @@ x test da shit proper in bash finafrickingly lmfao
|
|||||||
x recheck exit-esp-info
|
x recheck exit-esp-info
|
||||||
README/help
|
README/help
|
||||||
installer command
|
installer command
|
||||||
curl -s https://raw.githubusercontent.com/PrincessPi3/esp-idf-tools/refs/heads/master/install.sh | exec $SHELL
|
curl -s https://raw.githubusercontent.com/PrincessPi3/esp-idf-tools/refs/heads/master/install.sh | exec $SHELL; exec $SHELL
|
||||||
uninstaller command
|
uninstaller command
|
||||||
curl -s https://raw.githubusercontent.com/PrincessPi3/esp-idf-tools/refs/heads/master/uninstall.sh | exec $SHELL
|
curl -s https://raw.githubusercontent.com/PrincessPi3/esp-idf-tools/refs/heads/master/uninstall.sh | exec $SHELL; exec $SHELL
|
||||||
uninstaller
|
uninstaller
|
||||||
make uninstaller interactive by default to make sure of paths
|
make uninstaller interactive by default to make sure of paths
|
||||||
check envvars for info
|
check envvars for info
|
||||||
|
|||||||
+11
-9
@@ -1,4 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
rcFile=~/.bashrc
|
||||||
|
|
||||||
echo "STARTING UNINSTALLATION"
|
echo "STARTING UNINSTALLATION"
|
||||||
|
|
||||||
# unset any esp-idf/-tools envvars
|
# unset any esp-idf/-tools envvars
|
||||||
@@ -28,14 +30,14 @@ echo -e "\tRemoving log files"
|
|||||||
rm -f ~/esp/install.log 2>/dev/null
|
rm -f ~/esp/install.log 2>/dev/null
|
||||||
rm -f ~/esp/version-data.log 2>/dev/null
|
rm -f ~/esp/version-data.log 2>/dev/null
|
||||||
|
|
||||||
# cleanup ~/.bashrc
|
# cleanup $rcFile
|
||||||
## with first one, make a backup
|
echo -e "\tCleaning up $rcFile"
|
||||||
## after dat, no backups
|
sed -i.bak '/# esp-idf-tools/d' $rcFile # with first one, maek a backup
|
||||||
echo -e "\tCleaning up ~/.bashrc"
|
sed -i '/ESPIDFTOOLS_INSTALLDIR/d' $rcFile
|
||||||
sed -i.bak '/# esp-idf-tools/d' ~/.bashrc
|
sed -i '/get-esp-tools/d' $rcFile
|
||||||
sed -i '/get-esp-tools/d' ~/.bashrc
|
sed -i '/run-esp-cmd/d' $rcFile
|
||||||
sed -i '/run-esp-cmd/d' ~/.bashrc
|
sed -i '/esp-install-monitor/d' $rcFile
|
||||||
sed -i '/esp-install-monitor/d' ~/.bashrc
|
sed -i '/esp-install-logs/d' $rcFile
|
||||||
sed -i '/esp-install-logs/d' ~/.bashrc
|
printf "%s" "$(cat $rcFile)" > $rcFile # remove leading and trailing newlines in place
|
||||||
|
|
||||||
echo "DONE UNINSTALLING"
|
echo "DONE UNINSTALLING"
|
||||||
Reference in New Issue
Block a user