Skip to content

Commit dc496c7

Browse files
committed
Project cleanup
1 parent 8b76d1d commit dc496c7

File tree

5 files changed

+20
-13
lines changed

5 files changed

+20
-13
lines changed

bin/build

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
#!/bin/bash
22

33

4-
cd /scheduler
54
go get
5+
66
rm -rf dist
77
mkdir -p dist
8+
89
cd ./dist
9-
go build -o go-cron /scheduler/scheduler.go
10+
11+
go build -o go-cron ../go-cron.go
12+
1013
tar -cf go-cron.tar.gz go-cron

bin/docker

-10
This file was deleted.

crane.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
containers:
2+
go-cron:
3+
image: michaloo/golangdev
4+
run:
5+
volume:
6+
- ".:/go-cron"
7+
interactive: true
8+
tty: true
9+
workdir: "/go-cron"
10+
entrypoint: /bin/bash
11+
cmd:
12+
- -c
13+
- "bash"
14+
rm: true

scheduler.go go-cron.go

File renamed without changes.

test/run

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
go run ./scheduler.go "* * * * * *" /bin/bash -c "echo 1;"
3+
go run ./go-cron.go "* * * * * *" /bin/bash -c "echo 1;"

0 commit comments

Comments
 (0)