Skip to content

Commit

Permalink
bump version ; fix release example
Browse files Browse the repository at this point in the history
  • Loading branch information
ilmanzo committed Feb 3, 2023
1 parent 51cee4c commit f2d8db3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion containertools.nimble
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Package

version = "0.2.1"
version = "0.2.2"
author = "Andrea Manzini"
description = "A library to handle container file"
license = "GPL-3.0"
Expand Down
1 change: 0 additions & 1 deletion examples/containertools
Submodule containertools deleted from a4b575
2 changes: 1 addition & 1 deletion src/containertools/containerspec.nim
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ proc consolidate*(src: ContainerSpec): ContainerSpec =

# draft implementation ,work in progress
proc build*(c: ContainerSpec) =
let output, exitCode = execCmdex(command = "podman build -f -", input = $c)
let (output, exitCode) = execCmdex(command = "podman build -f -", input = $c)
if exitCode == 0:
echo "Your container image is built"
echo output
Expand Down

0 comments on commit f2d8db3

Please sign in to comment.