crowdin-cli 0.0.18 → 0.0.19
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/crowdin-cli +2 -8
- data/lib/crowdin-cli/version.rb +1 -1
- metadata +1 -1
data/bin/crowdin-cli
CHANGED
|
@@ -508,17 +508,11 @@ EOS
|
|
|
508
508
|
end
|
|
509
509
|
|
|
510
510
|
if @config['base_path']
|
|
511
|
-
|
|
512
|
-
@base_path = @config['base_path']
|
|
513
|
-
else
|
|
514
|
-
@base_path = Dir.pwd + '/' + @config['base_path']
|
|
515
|
-
end
|
|
511
|
+
@base_path = @config['base_path']
|
|
516
512
|
else
|
|
517
513
|
@base_path = Dir.pwd
|
|
518
514
|
puts <<EOS
|
|
519
|
-
Warning: Configuration
|
|
520
|
-
Set the working directory - `#{@base_path}`
|
|
521
|
-
|
|
515
|
+
Warning: Configuration misses parameter `base_path` that defines your project root directory. Using `#{@base_path}` as a root directory.
|
|
522
516
|
EOS
|
|
523
517
|
end
|
|
524
518
|
|
data/lib/crowdin-cli/version.rb
CHANGED