more prettier

This commit is contained in:
Sparticuz 2023-03-24 09:35:44 -04:00
parent 3ab680c5e4
commit f26740b0ea
2 changed files with 15 additions and 12 deletions

View File

@ -142,8 +142,7 @@
- name: Checking for Directory Structure - name: Checking for Directory Structure
stat: stat:
path: /srv/source/chromium path: /srv/source/chromium
register: register: structure
structure
- name: Creating Directory Structure - name: Creating Directory Structure
become: true become: true
@ -172,7 +171,7 @@
dest: /srv/source/chromium/.gclient dest: /srv/source/chromium/.gclient
owner: ec2-user owner: ec2-user
group: ec2-user group: ec2-user
mode: '0664' mode: "0664"
- name: Checking for Chromium - name: Checking for Chromium
stat: stat:
@ -187,8 +186,8 @@
- name: Parse Result - name: Parse Result
set_fact: set_fact:
gitsha: > gitsha: >
{{ revision.content | regex_search('"git_sha":"([a-zA-Z0-9_]*)"', '\1') | trim }} {{ revision.content | regex_search('"git_sha":"([a-zA-Z0-9_]*)"', '\1') | trim }}
- name: Checking Out Chromium revision - name: Checking Out Chromium revision
shell: | shell: |
@ -211,22 +210,22 @@
backrefs: yes backrefs: yes
with_items: with_items:
- { - {
path: 'sandbox_ipc_linux.cc', path: "sandbox_ipc_linux.cc",
line: '\1PLOG(WARNING) << "poll"; failed_polls = 0;', line: '\1PLOG(WARNING) << "poll"; failed_polls = 0;',
regexp: '^(\s+)PLOG[(]WARNING[)] << "poll";$', regexp: '^(\s+)PLOG[(]WARNING[)] << "poll";$',
} }
- { - {
path: 'renderer_host/render_process_host_impl.cc', path: "renderer_host/render_process_host_impl.cc",
line: '\1// \2\3', line: '\1// \2\3',
regexp: '^( )(\s*)(CHECK[(]render_process_host->InSameStoragePartition[(])$', regexp: '^( )(\s*)(CHECK[(]render_process_host->InSameStoragePartition[(])$',
} }
- { - {
path: 'renderer_host/render_process_host_impl.cc', path: "renderer_host/render_process_host_impl.cc",
line: '\1// \2\3', line: '\1// \2\3',
regexp: '^( )(\s*)(browser_context->GetStoragePartition[(]site_instance,)$', regexp: '^( )(\s*)(browser_context->GetStoragePartition[(]site_instance,)$',
} }
- { - {
path: 'renderer_host/render_process_host_impl.cc', path: "renderer_host/render_process_host_impl.cc",
line: '\1// \2\3', line: '\1// \2\3',
regexp: '^( )(\s*)(false /[*] can_create [*]/[)][)][)];)$', regexp: '^( )(\s*)(false /[*] can_create [*]/[)][)][)];)$',
} }
@ -340,7 +339,7 @@
amazon.aws.ec2_instance: amazon.aws.ec2_instance:
wait: yes wait: yes
state: absent state: absent
instance_ids: '{{ ec2.instance_ids }}' instance_ids: "{{ ec2.instance_ids }}"
region: "{{ region }}" region: "{{ region }}"
- name: Deleting Security Group - name: Deleting Security Group

View File

@ -2,8 +2,12 @@
"extends": "@tsconfig/node14/tsconfig.json", "extends": "@tsconfig/node14/tsconfig.json",
"compilerOptions": { "compilerOptions": {
"declaration": true, "declaration": true,
"lib": ["dom"], "lib": [
"dom"
],
"outDir": "build", "outDir": "build",
}, },
"include": ["source"] "include": [
"source"
]
} }