12 lines
282 B
Bash
12 lines
282 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
VAGRANT_CORE_FOLDER=$(cat '/.puphpet-stuff/vagrant-core-folder.txt')
|
||
|
|
||
|
if [[ -f '/.puphpet-stuff/displayed-important-notices' ]]; then
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
cat "${VAGRANT_CORE_FOLDER}/shell/ascii-art/important-notices.txt"
|
||
|
|
||
|
touch '/.puphpet-stuff/displayed-important-notices'
|