Files
openstapps/scripts/postinstall.sh
2018-11-30 16:47:57 +01:00

10 lines
276 B
Bash
Executable File

#!/usr/bin/env sh
if [[ ! -d "$INIT_CWD/node_modules/@openstapps/configuration/" ]]; then
exit;
fi;
echo "Copying .editorconfig from @openstapps/configuration to this project."
cp "$INIT_CWD/node_modules/@openstapps/configuration/.editorconfig" "$INIT_CWD/.editorconfig"