Skip to content

Commit

Permalink
fix(status.rb): explicitly define branch as master
Browse files Browse the repository at this point in the history
Explicit definition of the principal branch as master, and a
light edit of the description of the task ahead.

Signed-off-by: Norwid Behrnd <[email protected]>
  • Loading branch information
nbehrnd committed Apr 17, 2024
1 parent 9cc53a8 commit 0ef4151
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion levels/status.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
difficulty 1
description "There are some files in this repository, but only one of them is untracked. Which file is it?"
description "Among the files in this repository, which of them is untracked?"

setup do
repo.init
%w{config.rb README setup.rb deploy.rb Guardfile}.each do |file|
FileUtils.touch(file)
system "git branch -m master"
repo.add(file)
end
FileUtils.touch("database.yml")
Expand Down

0 comments on commit 0ef4151

Please sign in to comment.