Updated changelog.
This commit is contained in:
+5
-4
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user