Overview
Comment:Création de fichier pour la release
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA1: 63ca883e93794ab360c8ab6fb25e143976694535
User & Date: bohwaz on 2017-09-08 04:43:43
Other Links: branch diff | manifest | tags
Context
2017-09-08
04:51
Suppression méthodes inutilisées check-in: 3d0a52ff36 user: bohwaz tags: dev
04:43
Création de fichier pour la release check-in: 63ca883e93 user: bohwaz tags: dev
04:41
Copie de fonctions utiles depuis l'admin pour l'installation check-in: c9610f40c6 user: bohwaz tags: dev
Changes

Modified src/Makefile from [5b75c7c58b] to [80d74201c9].

9
10
11
12
13
14
15









	rm -rf "include/lib/KD2"
	unzip "${TMP_KD2}/kd2.zip" -d include/lib

	rm -rf ${TMP_KD2}

dev-server:
	php -S localhost:8082 -t www www/_route.php
















>
>
>
>
>
>
>
>
>
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
	rm -rf "include/lib/KD2"
	unzip "${TMP_KD2}/kd2.zip" -d include/lib

	rm -rf ${TMP_KD2}

dev-server:
	php -S localhost:8082 -t www www/_route.php

release:
	$(eval VERSION=$(shell cat VERSION))
	fossil ls | grep '^src/' | sed 's/src/garradin-${VERSION}/' > /tmp/garradin-${VERSION}-list.txt
	echo "garradin-${VERSION}/include/lib/KD2" >> /tmp/garradin-${VERSION}-list.txt
	rm -f /tmp/garradin-${VERSION}
	ln -s ${PWD} /tmp/garradin-${VERSION}
	tar cjvfh garradin-${VERSION}.tar.bz2 -C /tmp -T /tmp/garradin-${VERSION}-list.txt
	rm -f /tmp/garradin-${VERSION}*