fix: move files instead of copying them
There was left over files in sloth-flake in the store.main
parent
cf036bd26c
commit
3d35555ef7
|
|
@ -82,10 +82,10 @@
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
dir=lua/sloth-flake
|
dir=lua/sloth-flake
|
||||||
mkdir -p $dir
|
mkdir -p $dir
|
||||||
cp *.lua $dir
|
mv *.lua $dir
|
||||||
for d in *; do
|
for d in *; do
|
||||||
if [[ -d "$d" ]] && [[ "$d" != 'lua' ]]; then
|
if [[ -d "$d" ]] && [[ "$d" != 'lua' ]]; then
|
||||||
cp -r "$d" $dir
|
mv "$d" $dir
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue