Skip to content

Commit

Permalink
Fix bk docker and bk edit (#318)
Browse files Browse the repository at this point in the history
* Fix brewkit source mount within bk docker

Refs pkgxdev/pantry#5472 (comment)

* Fix bk edit
  • Loading branch information
felipecrs authored Mar 9, 2024
1 parent 2d90aad commit e0f7006
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/bk-docker
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if [ ! -d "$PKGX_PANTRY_PATH" ]; then
exit 64
fi

d="$(cd "$(dirname "$0")/../.." && pwd)"
d="$(cd "$(dirname "$0")/.." && pwd)"

if [ -z "$GITHUB_TOKEN" ]; then
GITHUB_TOKEN=$(pkgx gh auth token)
Expand Down
2 changes: 1 addition & 1 deletion bin/bk-edit
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -eo pipefail

d="$(cd "$(dirname "$0")/../.." && pwd)"
d="$(cd "$(dirname "$0")/.." && pwd)"

if [ -z "$1" ]; then
if [ -z "$PKGX_PANTRY_PATH" ]; then
Expand Down

0 comments on commit e0f7006

Please sign in to comment.