data_importer/bin/yarn

12 lines
294 B
Text
Raw Permalink Normal View History

2022-03-30 22:12:56 -05:00
#!/usr/bin/env ruby
2022-04-19 02:37:27 -05:00
# frozen_string_literal: true
2022-03-30 22:12:56 -05:00
APP_ROOT = File.expand_path('..', __dir__)
Dir.chdir(APP_ROOT) do
2022-04-19 02:37:27 -05:00
exec 'yarnpkg', *ARGV
rescue Errno::ENOENT
warn 'Yarn executable was not detected in the system.'
warn 'Download Yarn at https://yarnpkg.com/en/docs/install'
exit 1
2022-03-30 22:12:56 -05:00
end