Skip to content
This repository has been archived by the owner on Dec 15, 2020. It is now read-only.

Commit

Permalink
Merge pull request #35 from jkooker/patch-1
Browse files Browse the repository at this point in the history
Fix small typo in postinstall
  • Loading branch information
mastahyeti authored Aug 16, 2017
2 parents cb23f15 + 5fc4f2f commit ed0ab09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install-scripts/postinstall
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
set -e

KEXT="/Library/Extensions/softu2f.kext"
LAUCNH_AGENTS_DIR="$HOME/Library/LaunchAgents"
LAUNCH_AGENT_PLIST="$LAUCNH_AGENTS_DIR/com.github.SoftU2F.plist"
LAUNCH_AGENTS_DIR="$HOME/Library/LaunchAgents"
LAUNCH_AGENT_PLIST="$LAUNCH_AGENTS_DIR/com.github.SoftU2F.plist"

# Make sure the kext is loaded
kextutil $KEXT

# This directory should already exist, but some users have had issues with it
# being missing.
mkdir -p $LAUCNH_AGENTS_DIR
mkdir -p $LAUNCH_AGENTS_DIR

# Write a LaunchAgent plist so app starts at login
cat > $LAUNCH_AGENT_PLIST << EOT
Expand Down

0 comments on commit ed0ab09

Please sign in to comment.