7 lines
74 B
Bash
7 lines
74 B
Bash
#!/bin/bash
|
|
# 2023-11-27
|
|
|
|
ln -s _vm/.env .env
|
|
chown -R 1000:1000 .
|
|
|
|
exit 0 |