scinote-web/bin/yarn

18 lines
521 B
Plaintext
Raw Normal View History

2017-06-23 21:19:08 +08:00
#!/usr/bin/env ruby
2019-07-03 15:48:20 +08:00
APP_ROOT = File.expand_path('..', __dir__)
Dir.chdir(APP_ROOT) do
yarn = ENV["PATH"].split(File::PATH_SEPARATOR).
select { |dir| File.expand_path(dir) != __dir__ }.
product(["yarn", "yarn.exe"]).
map { |dir, file| File.expand_path(file, dir) }.
find { |file| File.executable?(file) }
if yarn
exec yarn, *ARGV
else
2017-06-23 21:19:08 +08:00
$stderr.puts "Yarn executable was not detected in the system."
$stderr.puts "Download Yarn at https://yarnpkg.com/en/docs/install"
exit 1
end
end