Skip to content

Commit

Permalink
fix nstools verify bin
Browse files Browse the repository at this point in the history
  • Loading branch information
seiya-git committed Nov 22, 2023
1 parent d4259fb commit e6e4561
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ __pycache__
smartgit*

build/**
!build/bin/**
!build/bin
!setup.py
!setup-build.bat
!setup-build.sh

/logs
logs
*_dev.py
*.xci
*.xcz
Expand Down
4 changes: 4 additions & 0 deletions build/bin/ns-verify-folder
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash

SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
python3 "$SCRIPTPATH/ns_verify_folder.py" -i $1
4 changes: 4 additions & 0 deletions build/bin/ns-verify-folder-log
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash

SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
python3 "$SCRIPTPATH/ns_verify_folder.py" --save-log -i $1
2 changes: 1 addition & 1 deletion build/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setuptools.setup(
name = 'nstools',
version = '1.1.5.dev10',
version = '1.1.5.dev11',
url = 'https://github.com/seiya-dev/NSTools',
long_description = long_description,
long_description_content_type = 'text/markdown',
Expand Down

0 comments on commit e6e4561

Please sign in to comment.