rmybackup 0.3.6 → 0.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/rmybackup +1 -1
- data/lib/rmybackup.rb +1 -1
- data/lib/rmybackup/install_config.rb +2 -0
- metadata +2 -2
data/bin/rmybackup
CHANGED
data/lib/rmybackup.rb
CHANGED
|
@@ -52,6 +52,7 @@ module RMyBackup
|
|
|
52
52
|
#See if the config file exists
|
|
53
53
|
if not File.exists? file
|
|
54
54
|
puts "The config file cannot be found: #{file}"
|
|
55
|
+
exit 1
|
|
55
56
|
end
|
|
56
57
|
|
|
57
58
|
puts "Showing config file - #{file}:\n"
|
|
@@ -71,6 +72,7 @@ module RMyBackup
|
|
|
71
72
|
#See if the config file exists
|
|
72
73
|
if not File.exists? file
|
|
73
74
|
puts "The config file cannot be found: #{file}"
|
|
75
|
+
exit 1
|
|
74
76
|
end
|
|
75
77
|
|
|
76
78
|
if editor
|