Skip to content

Commit

Permalink
Fixes issue where the config file generated was making execute an arr…
Browse files Browse the repository at this point in the history
…ay instead of just a string
  • Loading branch information
wess committed Nov 18, 2016
1 parent 1a17a8c commit 4ec8793
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/overlook/overlook.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ import env

public class Overlook {
static let name = "overlook"
static let version = "0.0.1"
static let version = "0.1.0"
static let desc = "File monitoring tool that excutes on change. Used anywhere."

static let dotTemplate:[String:Any] = [
"env" : ["example" : "variable"],
"verbose" : true,
"ignore" : [".git", ".gitignore", ".overlook",],
"directories" : ["build", "tests",],
"execute" : ["ls -la"],
"execute" : "ls -la",
]

private lazy var helpCommand:HelpCommand = HelpCommand()
Expand Down

0 comments on commit 4ec8793

Please sign in to comment.