Skip to content
代码片段 群组 项目

Fix sed to support code-sync bundle install

已合并 Baodong requested to merge fix-code-sync-bundle-install into main-jh
#!/bin/sh
cat Gemfile | sed -e 's/vendor/\.\.\/vendor/' > jh/Gemfile
cat jh/Gemfile.jh >> jh/Gemfile
\ No newline at end of file
echo 'replace "vendor" with "../vendor"'
echo 'replace "gems/gitlab-rspec" with "../gems/gitlab-rspec"'
cat Gemfile | sed -e 's/vendor/\.\.\/vendor/' | sed -e 's/gems\/gitlab-rspec/\.\.\/gems\/gitlab-rspec/' > jh/Gemfile
cat jh/Gemfile.jh >> jh/Gemfile
加载中