Skip to content

Commit

Permalink
Merge pull request #35 from hramrach/master
Browse files Browse the repository at this point in the history
udev-rule-writer: Drop extension, make executable
  • Loading branch information
rnayabed authored Feb 21, 2024
2 parents e194721 + 22b234b commit 503cdc3
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ jobs:
cmake --build build
cmake --install build
chmod a+x installer/packages/${INSTALLER_PACKAGE_NAME}/data/bin/udev-rule-writer.sh
- name: Cleanup directories
run: |
rm -rf installer/packages/${INSTALLER_PACKAGE_NAME}/data/lib
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)

set(LINUX_UDEV_RULE_WRITER_NAME "udev-rule-writer.sh")
set(LINUX_UDEV_RULE_WRITER_NAME "udev-rule-writer")

set(MACOSX_BUNDLE_COPYRIGHT "Debayan Sutradhar")
set(MACOSX_BUNDLE_GUI_IDENTIFIER io.github.rnayabed.rangoli)
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ if (CMAKE_SYSTEM_NAME MATCHES "Linux")
"${CMAKE_CURRENT_SOURCE_DIR}/${LINUX_UDEV_RULE_WRITER_NAME}"
"${CMAKE_CURRENT_BINARY_DIR}")

install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/${LINUX_UDEV_RULE_WRITER_NAME}"
install(PROGRAMS "${CMAKE_CURRENT_SOURCE_DIR}/${LINUX_UDEV_RULE_WRITER_NAME}"
DESTINATION ${CMAKE_INSTALL_BINDIR})
endif()

Expand Down
File renamed without changes.

0 comments on commit 503cdc3

Please # to comment.