Skip to content

Commit 0f525cf

Browse files
Fixed
Signed-off-by: The-Repo-Club <wayne6324@gmail.com>
1 parent a778b2c commit 0f525cf

4 files changed

Lines changed: 47 additions & 9 deletions

File tree

example/languages/bash

100644100755
File mode changed.

example/languages/html5

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!doctype html>
2+
3+
<html lang="en">
4+
<head>
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
8+
<title>A Basic HTML5 Template</title>
9+
<meta name="description" content="A simple HTML5 Template for new projects.">
10+
<meta name="author" content="SitePoint">
11+
12+
<meta property="og:title" content="A Basic HTML5 Template">
13+
<meta property="og:type" content="website">
14+
<meta property="og:url" content="https://www.sitepoint.com/a-basic-html5-template/">
15+
<meta property="og:description" content="A simple HTML5 Template for new projects.">
16+
<meta property="og:image" content="image.png">
17+
18+
<link rel="icon" href="/favicon.ico">
19+
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
20+
21+
<link rel="stylesheet" href="css/styles.css?v=1.0">
22+
<script src="js/scripts.js"></script>
23+
24+
</head>
25+
26+
<body>
27+
<!-- your content here... -->
28+
</body>
29+
</html>

example/languages/python

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/usr/bin/env python
2+
# -*-coding:utf-8 -*-
3+
# -------------------------------------------------------------------------
4+
# Path - /usr/bin/{{PROJECT_NAME}}
5+
# Git - {{AUTHOR_GIT}}
6+
# Author - {{AUTHOR_NAME}} [{{AUTHOR_EMAIL}}]
7+
# Start On - {{CURRENT_DATE}}
8+
# Modified On - {{CURRENT_DATE}}
9+
# -------------------------------------------------------------------------

proctl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# GitHub - https://github.com/The-Repo-Club/
66
# Author - The-Repo-Club [wayne6324@gmail.com]
77
# Start On - Fri 18 February 2022, 07:26:28 pm (GMT)
8-
# Modified On - Sat 19 February 2022, 04:44:59 pm (GMT)
8+
# Modified On - Sun 20 February 2022, 01:13:49 pm (GMT)
99
# -------------------------------------------------------------------------
1010
#
1111
#
@@ -221,15 +221,15 @@ get_license() {
221221
read -r yn
222222

223223
[[ ! "$yn" = "y" ]] && exit
224+
printf ' Last chance you can not go back from here? [y/N] '
225+
read -r lc
226+
227+
[[ ! "$lc" = "y" ]] && exit
224228
fi
225229

226230
l_name='LICENSE'
227231
[[ "$(head -n1 "$LICENSE_DIR"/"$user_license")" = 'UNLICENSE' ]] && l_name='UNLICENSE'
228232

229-
printf ' Last chance you can not go back from here? [y/N] '
230-
read -r lc
231-
232-
[[ ! "$lc" = "y" ]] && exit
233233
cp -rfL "$LICENSE_DIR"/"$user_license" "$l_name"
234234

235235
sed -i "$l_name" \
@@ -277,11 +277,11 @@ get_language() {
277277
read -r yn
278278

279279
[[ "$yn" != 'y' ]] && exit
280-
fi
281-
printf ' Last chance you can not go back from here? [y/N] '
282-
read -r lc
280+
printf ' Last chance you can not go back from here? [y/N] '
281+
read -r lc
283282

284-
[[ ! "$lc" = "y" ]] && exit
283+
[[ ! "$lc" = "y" ]] && exit
284+
fi
285285

286286
cp -rfL "$LANGUAGE_DIR"/"$user_language" "$l_name"
287287

0 commit comments

Comments
 (0)