Skip to content

Commit 4c4883a

Browse files
committed
Update check-licence-header to support .psm1 files
1 parent d9d91ac commit 4c4883a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/scripts/check-license-header.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ while IFS= read -r file_path; do
9191
plist) continue ;; # Plists don't support line comments
9292
proto) comment_marker='//' ;;
9393
ps1) comment_marker='##' ;;
94+
psm1) comment_marker='##' ;;
9495
py) comment_marker='##'; header_prefix=$'#!/usr/bin/env python3\n' ;;
9596
rb) comment_marker='##'; header_prefix=$'#!/usr/bin/env ruby\n' ;;
9697
sh) comment_marker='##'; header_prefix=$'#!/bin/bash\n' ;;

0 commit comments

Comments
 (0)