Skip to content

Commit

Permalink
fix(merge.rb): explicitly run branch master
Browse files Browse the repository at this point in the history
Signed-off-by: Norwid Behrnd <[email protected]>
  • Loading branch information
nbehrnd committed Apr 21, 2024
1 parent 1d34349 commit 13dfbf7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions levels/merge.rb
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
difficulty 2
description "We have a file in the branch 'feature'; Let's merge it to the master branch."
description "We have a file in the branch 'feature'. Let's merge it with the master branch."

setup do
init_from_level
init_from_level
system "git branch -m master"
end

solution do
File.exists?("file1") && File.exists?("file2")
File.exists?("file1") && File.exists?("file2")
end

hint do
Expand Down

0 comments on commit 13dfbf7

Please sign in to comment.