Compare commits

...

3 Commits

Author SHA1 Message Date
Greyh4t
453b65173c
Merge 2f9ddada9292d46f0f154c7c0d83c856cf6aa075 into eeffecbd1bd7d49672a1c6bd52d95d28a42acb21 2025-02-18 11:17:33 +05:30
Greyh4t
2f9ddada92 Update installer.sh
fix bug
2024-01-24 21:39:33 +08:00
Greyh4t
3047a7463e Update installer.sh 2024-01-24 21:39:33 +08:00

View File

@ -313,7 +313,7 @@ handle_partition() {
ui_print "- Handle partition /$1"
# we create a symlink if module want to access $MODPATH/system/$1
# but it doesn't always work(ie. write it in post-fs-data.sh would fail because it is readonly)
mv -f $MODPATH/system/$1 $MODPATH/$1 && ln -sf ../$1 $MODPATH/system/$1
cp -rf $MODPATH/system/$1 $MODPATH/ && rm -rf $MODPATH/system/$1 && ln -sf ../$1 $MODPATH/system/$1
fi
}