From 9439fc3bea061bf293a4e8aae10bbcf702dafd60 Mon Sep 17 00:00:00 2001 From: Pawel Langowski Date: Tue, 15 Apr 2025 14:31:13 +0200 Subject: [PATCH] Add .sh to all scripts Signed-off-by: Pawel Langowski --- Makefile | 16 ++++++++-------- ...{dasharo-hcl-report => dasharo-hcl-report.sh} | 0 reports/{touchpad-info => touchpad-info.sh} | 0 scripts/{cloud_list => cloud_list.sh} | 0 scripts/{dasharo-deploy => dasharo-deploy.sh} | 0 scripts/{dts-boot => dts-boot.sh} | 0 scripts/{dts => dts.sh} | 0 scripts/{ec_transition => ec_transition.sh} | 0 scripts/{logging => logging.sh} | 0 9 files changed, 8 insertions(+), 8 deletions(-) rename reports/{dasharo-hcl-report => dasharo-hcl-report.sh} (100%) rename reports/{touchpad-info => touchpad-info.sh} (100%) rename scripts/{cloud_list => cloud_list.sh} (100%) rename scripts/{dasharo-deploy => dasharo-deploy.sh} (100%) rename scripts/{dts-boot => dts-boot.sh} (100%) rename scripts/{dts => dts.sh} (100%) rename scripts/{ec_transition => ec_transition.sh} (100%) rename scripts/{logging => logging.sh} (100%) diff --git a/Makefile b/Makefile index dbc84d5..02de911 100644 --- a/Makefile +++ b/Makefile @@ -14,15 +14,15 @@ install: install -m 0755 include/hal/dts-hal.sh $(DESTDIR)$(SBINDIR) install -m 0755 include/hal/common-mock-func.sh $(DESTDIR)$(SBINDIR) - install -m 0755 scripts/cloud_list $(DESTDIR)$(SBINDIR) - install -m 0755 scripts/dasharo-deploy $(DESTDIR)$(SBINDIR) - install -m 0755 scripts/dts $(DESTDIR)$(SBINDIR) - install -m 0755 scripts/dts-boot $(DESTDIR)$(SBINDIR) - install -m 0755 scripts/ec_transition $(DESTDIR)$(SBINDIR) - install -m 0755 scripts/logging $(DESTDIR)$(SBINDIR)/logging + install -m 0755 scripts/cloud_list.sh $(DESTDIR)$(SBINDIR)/cloud_list + install -m 0755 scripts/dasharo-deploy.sh $(DESTDIR)$(SBINDIR)/dasharo-deploy + install -m 0755 scripts/dts.sh $(DESTDIR)$(SBINDIR)/dts + install -m 0755 scripts/dts-boot.sh $(DESTDIR)$(SBINDIR)/dts-boot + install -m 0755 scripts/ec_transition.sh $(DESTDIR)$(SBINDIR)/ec_transition + install -m 0755 scripts/logging.sh $(DESTDIR)$(SBINDIR)/logging - install -m 0755 reports/dasharo-hcl-report $(DESTDIR)$(SBINDIR) - install -m 0755 reports/touchpad-info $(DESTDIR)$(SBINDIR) + install -m 0755 reports/dasharo-hcl-report.sh $(DESTDIR)$(SBINDIR)/dasharo-hcl-report + install -m 0755 reports/touchpad-info.sh $(DESTDIR)$(SBINDIR)/touchpad-info install -d $(DESTDIR)$(SYSCONFDIR)/profile.d install -m 0755 dts-profile.sh $(DESTDIR)$(SYSCONFDIR)/profile.d diff --git a/reports/dasharo-hcl-report b/reports/dasharo-hcl-report.sh similarity index 100% rename from reports/dasharo-hcl-report rename to reports/dasharo-hcl-report.sh diff --git a/reports/touchpad-info b/reports/touchpad-info.sh similarity index 100% rename from reports/touchpad-info rename to reports/touchpad-info.sh diff --git a/scripts/cloud_list b/scripts/cloud_list.sh similarity index 100% rename from scripts/cloud_list rename to scripts/cloud_list.sh diff --git a/scripts/dasharo-deploy b/scripts/dasharo-deploy.sh similarity index 100% rename from scripts/dasharo-deploy rename to scripts/dasharo-deploy.sh diff --git a/scripts/dts-boot b/scripts/dts-boot.sh similarity index 100% rename from scripts/dts-boot rename to scripts/dts-boot.sh diff --git a/scripts/dts b/scripts/dts.sh similarity index 100% rename from scripts/dts rename to scripts/dts.sh diff --git a/scripts/ec_transition b/scripts/ec_transition.sh similarity index 100% rename from scripts/ec_transition rename to scripts/ec_transition.sh diff --git a/scripts/logging b/scripts/logging.sh similarity index 100% rename from scripts/logging rename to scripts/logging.sh