Skip to content

Instantly share code, notes, and snippets.

@Arime9
Last active November 9, 2020 07:31
Show Gist options
  • Save Arime9/49af946496c749e55ec12906d5b863eb to your computer and use it in GitHub Desktop.
Save Arime9/49af946496c749e55ec12906d5b863eb to your computer and use it in GitHub Desktop.
# Dir class
if Dir.exist?(bitcode_symbol_map_path)
# do something
end
Dir.chdir("..") do
# do something
end
# FileUtils class
build_path = './build'
FileUtils.mkdir_p("#{build_path}")
FileUtils.rm_rf './build'
FileUtils.cp_r("#{build_path}", './output')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment