Skip to content

Commit

Permalink
feat: fix relative path's not working and add shortcuts script into t…
Browse files Browse the repository at this point in the history
…he repo
  • Loading branch information
krzysztofzablocki committed Dec 12, 2016
1 parent 104f809 commit 817154e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Insanity.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "Insanity"
s.version = "0.2.0"
s.version = "0.2.1"
s.summary = "A tool that brings meta-programming to Swift, allowing you to code generate Swift code."

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion Insanity/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public struct FilePath {
}

func runCLI() {
let version = "0.1.0"
let version = "0.2.1"

command(
Flag("watch",
Expand Down
6 changes: 6 additions & 0 deletions bin/insanity
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env bash
# This file serves just as a link

parent_path=$( cd "$(dirname "${BASH_SOURCE}")" ; pwd -P )

${parent_path}/Insanity.app/Contents/MacOS/Insanity "$@"

0 comments on commit 817154e

Please sign in to comment.