Method: #check_heidi_root
- Defined in:
- bin/heidi
#check_heidi_root ⇒ Object
17 18 19 20 21 22 |
# File 'bin/heidi', line 17 def check_heidi_root() if !File.exists?("./projects") && File.directory?("./projects") $stderr.puts "You're not inside Heidi" exit 1 end end |