61-alpha5.3

This commit is contained in:
2024-11-12 22:24:44 -07:00
parent 67f6fabc10
commit 69111c9444
2 changed files with 12 additions and 2 deletions
+11 -1
View File
@@ -208,6 +208,9 @@ function handleAliasEnviron() {
echo "alias run_esp_reinstall='git -C $runningDir pull; cat $runningDir/version.txt; bash $runningDir/reinstall-esp-idf.sh '" >> $rcFile
returnStatus
aliasRunEspReinstallChk=$?
else
writeToLog "run_esp_reinstall alias already installed, skipping\n"
aliasRunEspReinstallChk=0
fi
if [ ! -z $(alias | grep esp_monitor) ]; then
@@ -215,6 +218,9 @@ function handleAliasEnviron() {
echo "alias esp_monitor='tail -n 75 -f $installDir/install.log'" >> $rcFile
returnStatus
aliasEspMonitorchk=$?
else
writeToLog "esp_monitor alias already installed, skipping\n"
aliasEspMonitorchk=0
fi
if [ ! -z $(alias | grep esp_logs) ]; then
@@ -222,6 +228,9 @@ function handleAliasEnviron() {
echo "alias esp_logs='less $installDir/install.log; less $installDir/version-data.txt'" >> $rcFile
returnStatus
aliasEspLogsChk=$?
else
writeToLog "esp_logs alias already installed, skipping\n"
aliasEspLogsChk=0
fi
if [ -z $ESPIDF_INSTALLDIR ]; then
@@ -231,6 +240,7 @@ function handleAliasEnviron() {
aliasInstallDirChk=$?
else
writeToLog "ESPIDF_INSTALLDIR environment variable already installed, skipping\n"
aliasInstallDirChk=0
fi
}
@@ -412,7 +422,7 @@ function handleEnd() {
endTime=$(date '+%s')
timeElapsed=$(($endTime-$startTime))
echo -e "\nesp-idf re/installed! run \`source $rcFile\` and then \`get_idf\`\n to go\n\nAll done :3\n\n"
echo -e "\nesp-idf re/installed! run \`source $rcFile\` and then \`get_idf\`\n\nAll done :3\n\n"
writeToLog "reinstall completed in $timeElapsed seconds\n"
writeToLog " === finished ===\n\n"
+1 -1
View File
@@ -1 +1 @@
61-alpha5.2
61-alpha5.3