2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-09 20:32:23 +00:00

Remove unneeded comments

This commit is contained in:
Alexander Neumann 2015-08-20 18:54:24 +02:00
parent 4755fff37f
commit 0cdbde1bd0

View File

@ -81,12 +81,9 @@ type AppveyorEnvironment struct{}
func (env *AppveyorEnvironment) Prepare() { func (env *AppveyorEnvironment) Prepare() {
msg("preparing environment for Appveyor CI\n") msg("preparing environment for Appveyor CI\n")
// install tar, gzip, bzip2
} }
func (env *AppveyorEnvironment) RunTests() { func (env *AppveyorEnvironment) RunTests() {
// run the build script and the tests
run("go", "run", "build.go", "-v", "-T") run("go", "run", "build.go", "-v", "-T")
} }