Welcome to mirror list, hosted at ThFree Co, Russian Federation.

update.sh « exampleSite - github.com/negrel/hugo-theme-pico.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2838d318840379e6694f62befc2bbf2e2710a0a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/sh

echo "Updating Pico submodule : "
echo "git submodule foreach git pull origin master"
git submodule foreach git pull origin master

# Check npm & npx installation
no_npm=false;
if ! npm="$(type -p "npm")" || [ -z $npm ]; then
	no_npm=true;
fi
no_npx=false;
if ! npx="$(type -p "npx")" || [ -z $npx ]; then
	no_npw=true;
fi

# Update node module
if [ "$no_npx" = false ] && [ "$no_npm" = false ] && [ -f "package.json" ]; then
	echo "Updating node modules : "
	echo "npx npm-check-updates -u && npm install"
	npx npm-check-updates -u && npm install
fi


no_postcss_cli=true;
if [ "$no_npm" = false ]; then
	npm ls postcss-cli > /dev/null

	if [ $? = 0 ]; then
		no_postcss_cli=false
	fi
fi


if [ "$no_postcss_cli" = true ]; then
	echo "Updating theme resources : "
	echo "cp -r ./themes/pico/exampleSite/resources ."
	cp -r ./themes/pico/exampleSite/resources .
fi

script_path="./themes/pico/exampleSite/update.sh"
if [ -f "$script_path" ]; then
	echo "Updating update.sh : "
	echo "cp \"$script_path\" ."
	cmp --silent "./update.sh" "$script_path" || cp "$script_path" .
fi