Files
kiss-vscode/projects/nat-flixel-desktop-playground/copy-extern-scripts.sh

8 lines
130 B
Bash
Executable File

#! /bin/bash
for dir in export/**/bin; do
if [ -d $dir/bin ]; then
rm -rf $dir/bin
fi
cp -r bin $dir/bin
done