소스 검색

:fire: Remove deprecated home-made scripts

GNU/Make rules them all.
DricomDragon 1 년 전
부모
커밋
3b38fdc93c

+ 0 - 19
undeployed/scripts/deploy-to-local-httpd.sh

@@ -1,19 +0,0 @@
-#!/bin/bash
-# Deploy on local Apache2 Httpd instance
-
-gitRoot=`git rev-parse --show-toplevel`
-from="$gitRoot/src/"
-dest="/var/www/html/"
-
-echo "A copy will be peformed from ..."
-echo $from
-echo " ... to ... "
-echo $dest
-
-bash "$gitRoot/undeployed/scripts/deploy/up-date.sh"
-bash "$gitRoot/undeployed/scripts/deploy/up-version.sh"
-
-rsync --delete --recursive --verbose $from $dest
-
-git checkout -- "$gitRoot/src/include/generated/date.txt"
-git checkout -- "$gitRoot/src/include/generated/version.txt"

+ 0 - 5
undeployed/scripts/deploy/README.md

@@ -1,5 +0,0 @@
-# Deploy
-
-_folder_
-
-Contains scripts to be run at deployment time

+ 0 - 6
undeployed/scripts/deploy/up-date.sh

@@ -1,6 +0,0 @@
-#!/bin/sh
-
-gitRoot=`git rev-parse --show-toplevel`
-
-date "+%F" > "$gitRoot/src/include/generated/date.txt"
-

+ 0 - 6
undeployed/scripts/deploy/up-version.sh

@@ -1,6 +0,0 @@
-#!/bin/sh
-
-gitRoot=`git rev-parse --show-toplevel`
-
-git describe > "$gitRoot/src/include/generated/version.txt"
-

+ 0 - 4
undeployed/scripts/serve-home.sh

@@ -1,4 +0,0 @@
-#!/bin/sh
-# Host pages on LAN
-
-php -S 0.0.0.0:8080 -t '../../src'