mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 21:39:57 +00:00
* Added RPATH to executable; lowercased name; fixed MRIVERSION option; made it look like an actual executable * Silencing some compiler warnings * Getting rid of journal binding header, fixing bugs with the Niko binding and synchronizing the two * Journal update to fix several bugs * Fix libpng warning by running mogrify on shrimp.png * Improved automation of the Linux build * Improved some aspects of wallpaper handling * Bump default Ruby version to 2.5
13 lines
185 B
Ruby
13 lines
185 B
Ruby
#!/usr/bin/ruby
|
|
#encoding: utf-8
|
|
require 'fileutils'
|
|
|
|
line = gets
|
|
files = []
|
|
while line
|
|
if line =~ / => (\/.*) \(/
|
|
files << $1
|
|
end
|
|
line = gets
|
|
end
|
|
FileUtils.cp(files, 'libs')
|