summaryrefslogtreecommitdiff
path: root/demo/install-file.py
diff options
context:
space:
mode:
authorZeeshan Ali <zeenix@collabora.co.uk>2018-09-24 14:18:44 +0200
committerZeeshan Ali <zeenix@collabora.co.uk>2018-09-24 14:18:44 +0200
commit0a45aa741daad4e8c7f7d860ed341c4c03178a7c (patch)
tree4a0ef3dda1893fbb7a36bb6759b4a58985808244 /demo/install-file.py
parent95fbadd7f9226c17ac7369c8f7bb6711ba40a5db (diff)
downloadgeoclue-0a45aa741daad4e8c7f7d860ed341c4c03178a7c.tar.gz
Revert "build: Install demo agent to autostart directory too"
This reverts commit b8fa586f84c5fa485fe3924becc4ff2b08d55938.
Diffstat (limited to 'demo/install-file.py')
-rw-r--r--demo/install-file.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/demo/install-file.py b/demo/install-file.py
deleted file mode 100644
index f5db502..0000000
--- a/demo/install-file.py
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/python3
-
-# A simple script that copies given file (first arg) to a given location (second arg)
-
-import sys
-from shutil import copyfile
-
-if len(sys.argv) < 3:
- print('Usage: ' + sys.argv[0] + ' SOURCE_PATH DESTINATION_PATH')
-
- sys.exit(-1)
-
-copyfile(sys.argv[1], sys.argv[2])