From 62b91ac92c8850c43397e7a09c67b44db63b9a97 Mon Sep 17 00:00:00 2001 From: Drew Short Date: Thu, 18 Jan 2018 14:52:23 -0600 Subject: [PATCH] Fixing a method reference --- src/spm/spm.moon | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/spm/spm.moon b/src/spm/spm.moon index 6e13919..aacc394 100644 --- a/src/spm/spm.moon +++ b/src/spm/spm.moon @@ -37,7 +37,6 @@ printUsage = -> print("'spm copy ' to copy package files to another location") print(" -f: Force creation of directories and overwriting of existing files.") - -- Make an internet http/s request for data getContent = (url) -> sContent = "" @@ -52,7 +51,7 @@ getContent = (url) -> return sContent -- Request repository information -getRepos -> +getRepos = -> success, sRepos = pcall(getContent, repoLocationConfig) if not success