diff options
Diffstat (limited to 'cpp/install/common/components/make_py_list.sh')
-rwxr-xr-x | cpp/install/common/components/make_py_list.sh | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/cpp/install/common/components/make_py_list.sh b/cpp/install/common/components/make_py_list.sh deleted file mode 100755 index 529ec87bfea..00000000000 --- a/cpp/install/common/components/make_py_list.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash
-
-echo "">$1
-
-cat >$1 <<\_CMTFILE
-# To create an explicit listing for the demos run the following command
-# in the demo directory of the IcePy distribution:
-# find . -name "*.py" -type f | sed -e 's/^\.\///' >> file
-#
-# If you want to use wild card searches instead of explicitly listing
-# files, you can delete the filenames and uncomment the following lines:
-#
-# *.py
-# include=**/*.py
-#
-# Stop uncommenting here
-# Delete from here to EOF
-
-_CMTFILE
-
-find . -name "*.py" -type f | sed -e 's/^\.\///' >> $1
|