mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-18 15:42:54 +00:00
10 lines
276 B
Bash
Executable File
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"
|