mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-23 08:06:27 +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/"
|