fix: move files instead of copying them

There was left over files in sloth-flake in the store.
main
LeMarsu 2024-06-04 00:47:37 +02:00
parent cf036bd26c
commit 3d35555ef7
1 changed files with 2 additions and 2 deletions

View File

@ -82,10 +82,10 @@
buildPhase = ''
dir=lua/sloth-flake
mkdir -p $dir
cp *.lua $dir
mv *.lua $dir
for d in *; do
if [[ -d "$d" ]] && [[ "$d" != 'lua' ]]; then
cp -r "$d" $dir
mv "$d" $dir
fi
done