Home
last modified time | relevance | path

Searched refs:ln_sf (Results 1 – 21 of 21) sorted by relevance

/dports/devel/gitolite2/gitolite-2.3.1/src/
H A Dgl-install46 ln_sf( "$GL_ADMINDIR/hooks/common", "*", "$repo/hooks" );
48 ln_sf( "$GL_PACKAGE_HOOKS/common", "*", "$repo/hooks" );
54 ln_sf( "$GL_PACKAGE_HOOKS/gitolite-admin", "post-update", "gitolite-admin.git/hooks" );
H A Dgl-compile-conf450 ln_sf("$GL_ADMINDIR/hooks/common", "*", "$repo.git/hooks");
453 ln_sf("$GL_PACKAGE_HOOKS/common", "*", "$repo.git/hooks") if $GL_PACKAGE_HOOKS;
H A Dgitolite.pm210 sub ln_sf subroutine
297 ln_sf($hooks_dir, "*", "hooks");
300 ln_sf("$GL_PACKAGE_HOOKS/common", "*", "hooks") if $GL_PACKAGE_HOOKS;
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/src/
H A Dinstall.rs131 let mut ln_sf = std::process::Command::new("ln"); in links() localVariable
132 ln_sf.arg("-sf"); in links()
133 ln_sf in links()
136 let _ = ln_sf.status().unwrap(); in links()
138 let mut ln_sf = std::process::Command::new("ln"); in links() localVariable
139 ln_sf.arg("-sf"); in links()
140 ln_sf in links()
143 let _ = ln_sf.status().unwrap(); in links()
/dports/devel/gitolite/gitolite-3.6.12/src/lib/Gitolite/Conf/
H A DStore.pm371 ln_sf( "$rc{LOCAL_CODE}/hooks/common", "*", "$repo.git/hooks" ) if $rc{LOCAL_CODE};
374 ln_sf( "$rc{GL_ADMIN_BASE}/hooks/common", "*", "$repo.git/hooks" );
376ln_sf( "$rc{GL_ADMIN_BASE}/hooks/gitolite-admin", "*", "$repo.git/hooks" ) if $repo eq 'gitolite-a…
/dports/net/goreplay/goreplay-1.2.0/homebrew/
H A Dgor.rb37 ln_sf buildpath, buildpath/"src/github.com/buger/gor"
/dports/lang/ruby26/ruby-2.6.9/test/fileutils/
H A Dtest_fileutils.rb882 ln_sf fname, 'tmp/lnsdest'
885 ln_sf fname, 'tmp/lnsdest'
886 ln_sf fname, 'tmp/lnsdest'
892 ln_sf 'symlink', 'tmp/symlink'
900 ln_sf Pathname.new('lns_dest'), 'tmp/symlink_tmp1'
901 ln_sf 'lns_dest', Pathname.new('tmp/symlink_tmp2')
902 ln_sf Pathname.new('lns_dest'), Pathname.new('tmp/symlink_tmp3')
/dports/devel/gitolite/gitolite-3.6.12/
H A Dinstall93 ln_sf( $ENV{GL_BINDIR}, "gitolite", $ln );
/dports/databases/pgroonga/pgroonga-2.3.4/
H A DRakefile141 ln_sf(archive, latest_archive)
147 ln_sf("#{archive}.asc", "#{latest_archive}.asc")
/dports/lang/ruby26/ruby-2.6.9/tool/
H A Dmkrunnable.rb47 ln_sf(src, dest)
H A Drbinstall.rb182 def ln_sf(src, dest) method
373 ln_sf(dll, File.join(libdir, link))
/dports/devel/gitlab-shell/gitlab-shell-65b8ec55bebd0aea64ac52b9878bafcc2ad992d3/vendor/gitlab.com/gitlab-org/gitaly/v14/internal/gitaly/linguist/
H A Dlinguist.go145 …rubyScript := `FileUtils.ln_sf(Bundler.rubygems.find_name('github-linguist').first.full_gem_path, …
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/gitlab.com/gitlab-org/gitaly/v14/internal/gitaly/linguist/
H A Dlinguist.go146 …rubyScript := `FileUtils.ln_sf(Bundler.rubygems.find_name('github-linguist').first.full_gem_path, …
/dports/textproc/gitlab-elasticsearch-indexer/gitlab-elasticsearch-indexer-ef1440548effec15831eda2d246dacc43233cefb/vendor/gitlab.com/gitlab-org/gitaly/v14/internal/gitaly/linguist/
H A Dlinguist.go146 …rubyScript := `FileUtils.ln_sf(Bundler.rubygems.find_name('github-linguist').first.full_gem_path, …
/dports/java/java-subversion/subversion-1.14.1/subversion/bindings/swig/ruby/test/
H A Dutil.rb350 FileUtils.ln_sf(File.join(base_dir, ".libs"), ext_dir)
/dports/devel/py-subversion/subversion-1.14.1/subversion/bindings/swig/ruby/test/
H A Dutil.rb350 FileUtils.ln_sf(File.join(base_dir, ".libs"), ext_dir)
/dports/security/subversion-gnome-keyring/subversion-1.14.1/subversion/bindings/swig/ruby/test/
H A Dutil.rb350 FileUtils.ln_sf(File.join(base_dir, ".libs"), ext_dir)
/dports/devel/p5-subversion/subversion-1.14.1/subversion/bindings/swig/ruby/test/
H A Dutil.rb350 FileUtils.ln_sf(File.join(base_dir, ".libs"), ext_dir)
/dports/devel/gitolite/gitolite-3.6.12/src/lib/Gitolite/
H A DCommon.pm194 sub ln_sf { subroutine
/dports/lang/ruby26/ruby-2.6.9/spec/bundler/runtime/
H A Dsetup_spec.rb871 FileUtils.ln_sf(gem_home, symlinked_gem_home.path)
/dports/lang/ruby26/ruby-2.6.9/lib/
H A Dfileutils.rb379 def ln_sf(src, dest, noop: nil, verbose: nil) method