Skip to content

Commit

Permalink
Revert "Fix 'Deprecated usage of '|' at the beginning of unquoted str…
Browse files Browse the repository at this point in the history
…ing' warning"

This reverts commit ce634f3.

IDE likes this commit but `sh` does not:

'/bin/sh: 2: Syntax error: "|" unexpected'
  • Loading branch information
ElijahLynn committed Mar 3, 2021
1 parent f7fee25 commit 3bfb1b0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .tugboat/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ services:
commands:
init:
- printf "\nInclude $TUGBOAT_ROOT/.tugboat/proxy-httpd.conf\n" >> /usr/local/apache2/conf/httpd.conf
build: |
echo "$TUGBOAT_PREVIEW_NAME"
| awk -f .tugboat/qa-subdomain.awk
> $TUGBOAT_ROOT/qa_subdomain.conf
build:
- echo "$TUGBOAT_PREVIEW_NAME"
| awk -f .tugboat/qa-subdomain.awk
> $TUGBOAT_ROOT/qa_subdomain.conf
# What to call the service hosting the site.
php:
# Use PHP 7.x with Apache; this syntax pulls in the latest version of PHP 7
Expand Down

0 comments on commit 3bfb1b0

Please sign in to comment.