Updated changelog.

This commit is contained in:
Storm Dragon
2025-10-09 20:51:50 -04:00
parent b4cedd2b6f
commit 3176d348c6
5 changed files with 146 additions and 4 deletions
+5 -4
View File
@@ -2,9 +2,10 @@
gitUrl="https://git.stormux.org/storm/gaming-image-files"
gitPath="${gitUrl##*/}"
pushd /tmp
pushd /tmp || exit
git clone "${gitUrl}"
pushd "${gitPath}"
pushd "${gitPath}" || exit
git checkout testing
git lfs pull
# Files and directories to ignore when copying
ignoreFiles=(".git" "./image" ".git*")
@@ -21,8 +22,8 @@ done
find . "${findArgs[@]}" -type f -exec bash -c 'for i ; do cp -av --preserve=all --parents "${i}" /;done' _ "{}" \;
# Fix ownership of home directory files
chown -R stormux:users /home/stormux
popd
popd || exit
rm -rf "${gitPath}"
popd
popd || exit
exit 0