summaryrefslogtreecommitdiff
path: root/tools/release/inspect.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/release/inspect.sh')
-rwxr-xr-xtools/release/inspect.sh31
1 files changed, 0 insertions, 31 deletions
diff --git a/tools/release/inspect.sh b/tools/release/inspect.sh
deleted file mode 100755
index 7c04fb58c..000000000
--- a/tools/release/inspect.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env bash
-
-# Inspect snapshot
-
-# © Copyright 2008 Beman Dawes
-# Distributed under the Boost Software License, Version 1.0.
-# See http://www.boost.org/LICENSE_1_0.txt
-
-# This script uses ftp, and thus assumes ~/.netrc contains a machine ... entry
-
-pushd posix/tools/inspect/build
-bjam
-popd
-echo inspect...
-pushd posix
-dist/bin/inspect >../inspect.html
-popd
-
-# create the ftp script
-echo create ftp script...
-echo "dir" >inspect.ftp
-echo "binary" >>inspect.ftp
-echo "put inspect.html" >>inspect.ftp
-echo "delete inspect-snapshot.html" >>inspect.ftp
-echo "rename inspect.html inspect-snapshot.html" >>inspect.ftp
-echo "dir" >>inspect.ftp
-echo "bye" >>inspect.ftp
-# use cygwin ftp rather than Windows ftp
-echo ftp...
-/usr/bin/ftp -v -i boost.cowic.de <inspect.ftp
-echo inspect.sh complete