mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 22:13:26 +00:00
8 lines
209 B
Ruby
8 lines
209 B
Ruby
# Work around https://bugs.launchpad.net/ubuntu/+source/puppet/+bug/1969939.
|
|
|
|
require 'fileutils'
|
|
|
|
def FileUtils.symlink(src, dest, options = {}, **kwargs)
|
|
FileUtils.ln_s(src, dest, **options, **kwargs)
|
|
end
|