Skip to content

Commit

Permalink
Fix scaffold source errors (#5374)
Browse files Browse the repository at this point in the history
  • Loading branch information
avida committed Aug 12, 2021
1 parent b377667 commit b1b0bd3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 28 deletions.
Expand Up @@ -15,7 +15,7 @@ docker build --build-arg UID="$UID" --build-arg GID="$GID" . -t airbyte/connecto
# Run the container and mount the airbyte folder
if [ $# -eq 2 ]; then
echo "2 arguments supplied: 1=$1 2=$2"
docker run --name airbyte-connector-bootstrap -e package_desc="$1" -e package_name="$2" -v "$(pwd)/../../../.":/airbyte airbyte/connector-bootstrap
docker run --name airbyte-connector-bootstrap --user $UID:$GID -e package_desc="$1" -e package_name="$2" -v "$(pwd)/../../../.":/airbyte airbyte/connector-bootstrap
else
echo "Running generator..."
docker run --rm -it --name airbyte-connector-bootstrap --user $UID:$GID -v "$(pwd)/../../../.":/airbyte airbyte/connector-bootstrap
Expand Down
Expand Up @@ -31,6 +31,7 @@

TEST_REQUIREMENTS = [
"pytest~=6.1",
"pytest-mock~=3.6.1",
"source-acceptance-test",
]

Expand Down

This file was deleted.

0 comments on commit b1b0bd3

Please sign in to comment.