Skip to content

Commit

Permalink
Add semicolon
Browse files Browse the repository at this point in the history
Getting `syntax error: unexpected end of file` without the semicolon.
  • Loading branch information
jcrben committed Jun 15, 2016
1 parent fa0e2ea commit 58c071d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ dbu() { docker build -t=$1 .; }
dalias() { alias | grep 'docker' | sed "s/^\([^=]*\)=\(.*\)/\1 => \2/"| sed "s/['|\']//g" | sort; }

# Bash into running container
dbash() { docker exec -it $(docker ps -aqf "name=$1") bash }
dbash() { docker exec -it $(docker ps -aqf "name=$1") bash; }

0 comments on commit 58c071d

Please sign in to comment.