summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2020-08-29 13:37:41 -0400
committerrsiddharth <s@ricketyspace.net>2020-08-29 13:37:41 -0400
commit209a14eff23fd2f75b1e82288505b04a0596a110 (patch)
tree6ffc3fd8d77e0c45bb71d7b76b24090f45709adf /Makefile
parent3cc030abc080a79101998afa5df99e7ef5d4a2fd (diff)
rename package enc -> hex
* Makefile (fmt): fmt lib instead of enc * challenge/c01.go: Use lib instead of enc * challenge/c02.go: Use lib instead of enc * enc/b64.go -> lib/b64.go * enc/hex.go -> lib/hex.go * enc/xor.go -> lib/xor.go
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fd91059..2abddd3 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ build: fmt
go build
fmt:
- go fmt -x ${MOD} ${MOD}/challenge ${MOD}/enc
+ go fmt -x ${MOD} ${MOD}/challenge ${MOD}/lib
clean:
go clean