Skip to content

Commit

Permalink
temp test
Browse files Browse the repository at this point in the history
  • Loading branch information
rlxdev committed Nov 15, 2024
1 parent 1ed36bc commit 6efdf3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/actions/setup-dependencies-windows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@ runs:
shell: powershell
run: |
mkdir ~/scubagoggles
echo "temp" > ./credentials.json
scubagoggles setup -d ~/scubagoggles -r ~/scubagoggles -c ./credentials.json
scubagoggles getopa -c -v ${{ inputs.opa-version }}
2 changes: 1 addition & 1 deletion scubagoggles/user_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def user_directory(arguments: argparse.Namespace):
if not user_dir.exists():
answer = prompt_boolean(f'Create directory {user_dir}')

if strtobool(answer):
if answer:
user_dir.mkdir(exist_ok = True)
else:
print(f' specified directory: {user_dir}')
Expand Down

0 comments on commit 6efdf3d

Please sign in to comment.