This repository has been archived by the owner on Dec 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
Submodule SoftU2F
updated
from 130066 to d67857
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
REPO_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/../" && pwd )" | ||
BUILD_DIR=$REPO_DIR/build | ||
|
||
# Build softu2f.kext | ||
$REPO_DIR/SoftU2F/script/build | ||
|
||
echo "Building SoftU2FTool.app" | ||
if ! xcodebuild -scheme SoftU2FTool -project SoftU2FTool.xcodeproj SYMROOT=$BUILD_DIR &> /dev/null; then | ||
echo "Error building SoftU2FTool.app" | ||
exit 1 | ||
fi | ||
echo "Built SoftU2FTool.app" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
REPO_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/../" && pwd )" | ||
BUILD_DIR=$REPO_DIR/build | ||
|
||
# Load softu2f.kext | ||
$REPO_DIR/SoftU2F/script/load | ||
|
||
# Run it | ||
$BUILD_DIR/Debug/SoftU2FTool.app/Contents/MacOS/SoftU2FTool |