6 lines
184 B
Bash
6 lines
184 B
Bash
|
|
#!/bin/bash
|
||
|
|
# Make setup script executable
|
||
|
|
chmod +x /home/valknar/Projects/kompose/setup-new-stacks.sh
|
||
|
|
echo "Setup script is now executable!"
|
||
|
|
echo "Run it with: ./setup-new-stacks.sh"
|