aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--spec/01_lib_spec.sh2
-rw-r--r--spec/02_src_spec.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/spec/01_lib_spec.sh b/spec/01_lib_spec.sh
index 6deef06..9e8ab36 100644
--- a/spec/01_lib_spec.sh
+++ b/spec/01_lib_spec.sh
@@ -10,7 +10,7 @@ Describe 'CPT Library'
End
End
Describe 'version()'
- VERSION=$(grep VERSION ./config.rc | sed 's/.* //g')
+ VERSION=$(sed -n '/VERSION/s/.* //gp' config.mk)
It 'prints version information'
When run script src/cpt-lib version
The stderr should eq "-> Carbs Packaging Tools $VERSION"
diff --git a/spec/02_src_spec.sh b/spec/02_src_spec.sh
index c5584ec..64eaa2f 100644
--- a/spec/02_src_spec.sh
+++ b/spec/02_src_spec.sh
@@ -10,7 +10,7 @@ Describe 'Main toolchain'
Describe 'cpt'
Describe '--version'
- VERSION=$(grep VERSION config.rc | sed 's/.* //g')
+ VERSION=$(grep VERSION config.mk | sed 's/.* //g')
It 'outputs cpt version'
When run script src/cpt --version
The stderr should eq "-> Carbs Packaging Tools $VERSION"