summary refs log tree commit diff stats
path: root/res/fmod/Metadata/EffectPresetFolder/{65bcb03c-3133-4e3c-9666-2a83c879aee5}.xml
Commit message (Expand)AuthorAgeFilesLines
* Added music and lamp popping soundStar Rauchenberger2022-03-111-0/+4
#!/usr/bin/env ruby
VENDOR_PATH = File.expand_path('..', __dir__)
Dir.chdir(VENDOR_PATH) do
  begin
    exec "yarnpkg #{ARGV.join(" ")}"
  rescue Errno::ENOENT
    $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