File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed
Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ Usage: $0 [options]
7373 m : no the[m]e reinstallations
7474 t : [t]est run without executing (-irst to dry run all)
7575
76- NOTE:
76+ NOTE:
7777 running without args is equivalent to -irs
7878 to ignore nvidia, run -irsn
7979
279279 " ${scrDir} /install_pst.sh"
280280fi
281281
282+
283+ # ---------------------------#
284+ # run migrations #
285+ # ---------------------------#
286+ if [ ${flg_Restore} -eq 1 ]; then
287+
288+ migrationDir=" $( realpath " $( dirname " $( realpath " $0 " ) " ) /../migrations" ) "
289+
290+ echo " Running migrations from: ${migrationDir} "
291+
292+ migrationFile=$( ls " ${migrationDir} " | sort -r | head -n 1)
293+
294+ echo " Found migration file: ${migrationFile} "
295+
296+ sh " ${migrationDir} /${migrationFile} "
297+
298+
299+ fi
300+
282301# ------------------------#
283302# enable system services #
284303# ------------------------#
Original file line number Diff line number Diff line change 33
44echo " Reloading Hyde shell shaders..."
55hyde-shell shaders --reload
6+
7+
You can’t perform that action at this time.
0 commit comments