From 213728435827a08fd306a93d63dc06b105af0cb2 Mon Sep 17 00:00:00 2001 From: Aaron Fenyes Date: Tue, 15 Jul 2025 21:18:17 -0700 Subject: [PATCH] Give the run-examples script a shell extension Also make the script non-executable, so it has to be run with a command like `sh run-examples.sh`. This makes the shebang line superfluous. --- app-proto/{run-examples => run-examples.sh} | 2 -- 1 file changed, 2 deletions(-) rename app-proto/{run-examples => run-examples.sh} (86%) mode change 100755 => 100644 diff --git a/app-proto/run-examples b/app-proto/run-examples.sh old mode 100755 new mode 100644 similarity index 86% rename from app-proto/run-examples rename to app-proto/run-examples.sh index b3e3121..50fafbe --- a/app-proto/run-examples +++ b/app-proto/run-examples.sh @@ -1,5 +1,3 @@ -#!/bin/sh - # run all Cargo examples, as described here: # # Karol Kuczmarski. "Add examples to your Rust libraries"