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 = ''
|
||||
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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue