mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-24 08:36:07 +02:00
8 lines
98 B
Bash
Executable File
8 lines
98 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -d "$1" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
cp -R build-system/example-configuration/* "$1/"
|