We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd78c86 commit 7be6338Copy full SHA for 7be6338
resources/views/ssh/cron/update.blade.php
@@ -1,4 +1,4 @@
1
-if ! echo '{{ $cron }}' | sudo -u {{ $user }} crontab -; then
+if ! echo '{!! $cron !!}' | sudo -u {{ $user }} crontab -; then
2
echo 'VITO_SSH_ERROR' && exit 1
3
fi
4
resources/views/ssh/os/deploy-ssh-key.blade.php
@@ -1,3 +1,3 @@
-if ! echo '{{ $key }}' | sudo tee -a ~/.ssh/authorized_keys; then
+if ! echo '{!! $key !!}' | sudo tee -a ~/.ssh/authorized_keys; then
resources/views/ssh/services/webserver/nginx/update-redirects.blade.php
-if ! echo '{{ $redirects }}' | sudo tee /etc/nginx/conf.d/{{ $domain }}_redirects; then
+if ! echo '{!! $redirects !!}' | sudo tee /etc/nginx/conf.d/{{ $domain }}_redirects; then
0 commit comments