From 90f316e058468e6c70d9b19c36c0c06af5d5ec37 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Tue, 23 May 2023 15:47:25 -0400 Subject: [PATCH] Formatted properly --- homeConfig/dotfiles/bash/bashrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeConfig/dotfiles/bash/bashrc b/homeConfig/dotfiles/bash/bashrc index a0f96e1..29e2cae 100644 --- a/homeConfig/dotfiles/bash/bashrc +++ b/homeConfig/dotfiles/bash/bashrc @@ -48,7 +48,7 @@ fi ## # penpot {run|stop|update|help} alias function -penpot() { +function penpot() { case "$1" in run) sudo docker compose -p penpot -f ~/Documents/tools/penpot/docker-compose.yaml up -d >/dev/null 2>&1 @@ -69,6 +69,7 @@ penpot() { ;; help) xdg-open "https://help.penpot.app/" + echo "Opened penpot help page in your browser." ;; *) echo "Usage: penpot {run|stop|update|help}"