summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--spec/build_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/build_spec.rb b/spec/build_spec.rb
index 8e0d6ed8..9bdc5c48 100644
--- a/spec/build_spec.rb
+++ b/spec/build_spec.rb
@@ -3,6 +3,6 @@ $plugin_path = File.expand_path('../..', __FILE__)
describe 'build script' do
it 'should run and return success code' do
Dir.chdir($plugin_path)
- system('./build')
+ expect(system('bash ./build')).to be_true
end
end