Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3

- name: Check typos
uses: crate-ci/typos@master

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion specs/laravel/laravel_migrate_fresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ command: |-
tags:
- Laravel
- Php
description: This command will drop all excisting tables and run Laravel database migrations after that
description: This command will drop all existing tables and run Laravel database migrations after that
arguments: []
source_url: "https://laravel.com/docs/10.x/migrations#running-migrations"
author: Bert De Swaef
Expand Down
2 changes: 1 addition & 1 deletion specs/laravel/laravel_migrate_fresh_seed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ command: |-
tags:
- Laravel
- Php
description: This command will drop all excisting tables and run Laravel database migrations after that, with seeding the database at the end.
description: This command will drop all existing tables and run Laravel database migrations after that, with seeding the database at the end.
arguments: []
source_url: "https://laravel.com/docs/10.x/migrations#running-migrations"
author: Bert De Swaef
Expand Down
4 changes: 2 additions & 2 deletions specs/zip/compress_subdirectories_under_folder.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
name: Compression all subdirectories and output each directory as a zip file.
command: "for dir in $(ls -d {{directory}}*/); do (zip -r {{opitons}} {{output}}$(basename $dir){{name_with_str}}.zip ${dir}{{zip_pattern}} && echo -e \"Compressed to {{output}}$(basename $dir){{name_with_str}}.zip.\"); done"
command: "for dir in $(ls -d {{directory}}*/); do (zip -r {{options}} {{output}}$(basename $dir){{name_with_str}}.zip ${dir}{{zip_pattern}} && echo -e \"Compressed to {{output}}$(basename $dir){{name_with_str}}.zip.\"); done"
tags:
- zip
description: Use zip to compress all subdirectories under a folder and output each directory as a zip file.
arguments:
- name: directory
description: Optional, The directory to execute. default is current directory.
default_value: ./
- name: opitons
- name: options
description: Optional, The options of zip command.
default_value: -q
- name: zip_pattern
Expand Down