mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 23:13:15 +00:00
10 lines
270 B
Bash
10 lines
270 B
Bash
#!/bin/bash
|
|
|
|
VAGRANT_CORE_FOLDER=$(cat '/.puphpet-stuff/vagrant-core-folder.txt')
|
|
|
|
if [[ ! -f '/.puphpet-stuff/displayed-important-notices' ]]; then
|
|
cat "${VAGRANT_CORE_FOLDER}/shell/important-notices.txt"
|
|
|
|
touch '/.puphpet-stuff/displayed-important-notices'
|
|
fi
|