Skip to content

Commit

Permalink
fixed bash for loop, now testing using env variable instead of modify…
Browse files Browse the repository at this point in the history
…ing all_changed_files
  • Loading branch information
rjwignar committed Nov 25, 2023
1 parent e7615ed commit f6d4991
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/clang_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,6 @@ jobs:
# done
# echo $PROCESS_OUTPUT
IFS=$','
for file in $(echo )
IFS=$',' read -a MODIFIED_FILES_ARRAY <<< "${{ steps.changed-files.outputs.all_changed_files }}"
for file in "${MODIFIED_FILES_ARRAY[@]}"; do
echo $file
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ struct PerPassParallax
};



StructuredBuffer<PerPassParallax> perPassParallax : register(t30);

#include "ComplexParallaxMaterials/CRPM.hlsli"

0 comments on commit f6d4991

Please sign in to comment.