Skip to content

Commit 8404ae8

Browse files
Merge pull request #212 from ceamac/bugs/install-presets
Fix installation of presets/ directory
2 parents 9fa0008 + d75f72c commit 8404ae8

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.6.3
2+
3+
Fixes installing presets in their own directory (#212)
4+
15
# 1.6.2
26

37
Releasing this, so void linux can package fastfetch.

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.12.0) # target_link_libraries with OBJECT libs
22

33
project(fastfetch
4-
VERSION 1.6.2
4+
VERSION 1.6.3
55
LANGUAGES C
66
)
77

@@ -522,7 +522,7 @@ install(
522522
)
523523

524524
install(
525-
DIRECTORY "${CMAKE_SOURCE_DIR}/presets/"
525+
DIRECTORY "${CMAKE_SOURCE_DIR}/presets"
526526
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/${CMAKE_PROJECT_NAME}"
527527
)
528528

0 commit comments

Comments
 (0)