From fe72c9df3fdf906ce799472723c29744fa0ea97c Mon Sep 17 00:00:00 2001 From: BOHUNG Date: Sat, 8 Feb 2020 12:26:26 +0800 Subject: [PATCH] fix wrong dir --- patchfile.gemspec | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/patchfile.gemspec b/patchfile.gemspec index d98402c..ce51761 100644 --- a/patchfile.gemspec +++ b/patchfile.gemspec @@ -36,7 +36,9 @@ if !Dir.exist?("#{ENV['PWD']}"+"/app/assets/stylesheets/lib/jquery-ui-1.12.1/") puts "There is an error in coppying jquery-ui" end end -`git add app/templates/ app/assets built_in_extensions.rb config/mongoid.yml bin/` #using git to add modified files and to avoid git pull not working +Dir.chdir(ENV['PWD']) do + `git add app/templates/ app/assets built_in_extensions.rb config/mongoid.yml bin/` #using git to add modified files and to avoid git pull not working +end #Add patchfile to Admin area @patchfile_li = File.read(app_path+"/patchfile_li.txt") @patchfile_li_choices = File.read(app_path+"/patchfile_li_choices.txt")