summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-04-20 18:38:24 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-04-20 18:38:24 +0000
commit983a0bba5d2a042c4a3bbb22432ec192c7501d82 (patch)
treeb153cd387c14ba23bd5a07514c7c01fddf6a78a0 /plugins
parenta2bddee2cdb38673df0e004d5b32d9f77797de64 (diff)
downloadgitlab-ce-983a0bba5d2a042c4a3bbb22432ec192c7501d82.tar.gz
Add latest changes from gitlab-org/gitlab@12-10-stable-ee
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/examples/save_to_file.clj3
-rwxr-xr-xplugins/examples/save_to_file.rb3
2 files changed, 0 insertions, 6 deletions
diff --git a/plugins/examples/save_to_file.clj b/plugins/examples/save_to_file.clj
deleted file mode 100755
index a59d83749d3..00000000000
--- a/plugins/examples/save_to_file.clj
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/env clojure
-(let [in (slurp *in*)]
- (spit "/tmp/clj-data.txt" in))
diff --git a/plugins/examples/save_to_file.rb b/plugins/examples/save_to_file.rb
deleted file mode 100755
index 61b0df9bfd6..00000000000
--- a/plugins/examples/save_to_file.rb
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/env ruby
-x = STDIN.read
-File.write('/tmp/rb-data.txt', x)